Mysql Connector Not Handling Table Names with Upper Case#340
Open
karthik1289 wants to merge 2 commits intoNetflix:masterfrom
Open
Mysql Connector Not Handling Table Names with Upper Case#340karthik1289 wants to merge 2 commits intoNetflix:masterfrom
karthik1289 wants to merge 2 commits intoNetflix:masterfrom
Conversation
…YSQL is not searchable. Problem Cause: Under QualifiedName we are standardizing to lowercase for all database and tablenames. Its better to leave them as is as relational databases might be case sensitive. Problem Solution: Not standardizing the database, table and view Names
Contributor
|
Early on, we made a decision to lower case names in Metacat. QualifiedName represents the identifier for an object in a catalog, where we standardize the names to be lower-cased. |
Contributor
Author
|
mysql is case sensitive. It wont accept search with lowercase for table names with upper case. |
Contributor
Author
|
if this is not the right approach then atleast we have to check for harvester is mysql and in that case we shouldn't standardize. Please provide your thoughts on the same. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem Description: Table names which are created in Upper case in MYSQL is not searchable. Problem Cause: Under QualifiedName we are standardizing to lowercase for all database and table names. Its better to leave them as is as relational databases might be case sensitive. Problem Solution: Not standardizing the database, table and view Names